home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / bbs_game / usurp014.zip / MULTI2.BAT < prev    next >
DOS Batch File  |  1996-03-01  |  1KB  |  46 lines

  1. @ECHO OFF
  2. REM   Usurper multinode batch file for PcBoard
  3. REM   This is a sample of a batch file to be used in a multinode Setup
  4. REM
  5. REM   %1 is the Node Number which can be passed to the
  6. REM   batch file from the BBS software.
  7. REM   (With RemoteAccess BBS software, this can be accomplished by
  8. REM   placing *N on the command line in ; execute Sub-program)
  9. REM
  10. REM   /N1 tells Usurper thate it's firing up on node 1. 
  11. REM   This switch is only necessary when node information is not
  12. REM   available from dropfile.    
  13. REM
  14. REM   /P{path to dropfile} tells Usurper where to look for dropfile.
  15. REM  Look in SYSOP.DOC for more command line options and batc file
  16. REM  examples.
  17. REM
  18. REM   /N1 tells Usurper thate it's firing up on node 1. 
  19. REM   This switch is only necessary when node information is not
  20. REM   available from dropfile.    
  21. REM
  22. REM   /P{path to dropfile} tells Usurper where to look for dropfile.
  23. REM  Look in SYSOP.DOC for more command line options and batc file
  24. REM  examples.
  25. REM
  26. REM DONT FORGET TO! :
  27. REM activate the section in the configuration file for multi-node and lock it.
  28. REM (example from Chris Capo)
  29. REM
  30. REM *******START BAT********
  31.  
  32. If %pcbnode% == 1 Goto Node1
  33. If %pcbnode% == 2 Goto Node2
  34.  
  35. :node1
  36. usurper.exe /M /pc:\pcb\pcbnode1
  37. goto end
  38.  
  39. :Node2
  40. Usurper.exe /M /pc:\pcb\node2
  41. goto end
  42.  
  43. :end
  44. board
  45.  
  46.